home *** CD-ROM | disk | FTP | other *** search
/ Enter 2006 September / Enter 09 2006.iso / Internet / SpamExperts Home 1.1 / SpamExperts Home.exe / lib / spamexperts.modules / dns / exception.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2006-07-14  |  1.2 KB  |  35 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Common DNS Exceptions.'''
  5.  
  6. class DNSException(Exception):
  7.     '''Abstract base class shared by all dnspython exceptions.'''
  8.     pass
  9.  
  10.  
  11. class FormError(DNSException):
  12.     '''DNS message is malformed.'''
  13.     pass
  14.  
  15.  
  16. class SyntaxError(DNSException):
  17.     '''Text input is malformed.'''
  18.     pass
  19.  
  20.  
  21. class UnexpectedEnd(SyntaxError):
  22.     '''Raised if text input ends unexpectedly.'''
  23.     pass
  24.  
  25.  
  26. class TooBig(DNSException):
  27.     '''The message is too big.'''
  28.     pass
  29.  
  30.  
  31. class Timeout(DNSException):
  32.     '''The operation timed out.'''
  33.     pass
  34.  
  35.